home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / communic / timer.zip / TIMER.XWS < prev   
Text File  |  1991-01-14  |  342b  |  18 lines

  1. /* Timer Script
  2. */
  3.  
  4. /* This script will print the current time at a user specified
  5.    interval and at the designated time call a specific phone
  6.    book entry and place the call */
  7.  
  8.  
  9. Label Top
  10. Wait 30 seconds
  11. X=TIME
  12. PRINT "The current time is "; X
  13. H=CURHOUR
  14. M=CURMINUTE
  15. IF H=10 AND M=12 then call "backwd2"
  16. else goto top
  17. end
  18.